home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Inspectors / WrapperInspector / TextSubInspector.h < prev    next >
Text File  |  1995-06-12  |  1KB  |  36 lines

  1. //----------------------------------------------------------------------------------------------------
  2. //
  3. //    TextSubInspector
  4. //
  5. //    Inherits From:        DefaultSubInspector
  6. //
  7. //    Declared In:        TextSubInspector.h
  8. //
  9. //    Class Description
  10. //
  11. //        TextSubInspector manages subinspection of text files such as
  12. //        'rtf', 'rtfd', 'h', 'm', 'c', 'strings', 'classes', etc.
  13. //        
  14. //    Disclaimer
  15. //
  16. //        You may freely copy, distribute and reuse this software and its
  17. //        associated documentation. I disclaim any warranty of any kind, 
  18. //        expressed or implied, as to its fitness for any particular use.
  19. //
  20. //----------------------------------------------------------------------------------------------------
  21. #import "DefaultSubInspector.h"
  22.  
  23.  
  24. @interface TextSubInspector : DefaultSubInspector
  25. {
  26.     id    text;
  27. }
  28.  
  29. //----------------------------------------------------------------------------------------------------
  30. //  Read Methods        
  31. //----------------------------------------------------------------------------------------------------
  32. - readRTF: (STR)path;
  33. - readRTFD: (STR)path;
  34. - readText: (STR)path;
  35.  
  36. @end